home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 726-750 / 741 / rkrm_lib1 / rkrm_lib1.lha / Intuition / Images_Text / simpleimage.c < prev   
C/C++ Source or Header  |  1992-09-03  |  4KB  |  125 lines

  1. ;/* simpleimage.c - program to show the use of a simple Intuition Image.
  2. lc -b1 -cfist -v -y -j73 simpleimage.c
  3. blink FROM LIB:c.o+"simpleimage.o" TO "simpleimage" LIB LIB:lc.lib LIB:amiga.lib
  4. quit
  5. */
  6.  
  7. /*
  8. Copyright (c) 1992 Commodore-Amiga, Inc.
  9.  
  10. This example is provided in electronic form by Commodore-Amiga, Inc. for
  11. use with the "Amiga ROM Kernel Reference Manual: Libraries", 3rd Edition,
  12. published by Addison-Wesley (ISBN 0-201-56774-1).
  13.  
  14. The "Amiga ROM Kernel Reference Manual: Libraries" contains additional
  15. information on the correct usage of the techniques and operating system
  16. functions presented in these examples.  The source and executable code
  17. of these examples may only be distributed in free electronic form, via
  18. bulletin board or as part of a fully non-commercial and freely
  19. redistributable diskette.  Both the source and executable code (including
  20. comments) must be included, without modification, in any copy.  This
  21. example may not be published in printed form or distributed with any
  22. commercial product.  However, the programming techniques and support
  23. routines set forth in these examples may be used in the development
  24. of original executable software products for Commodore Amiga computers.
  25.  
  26. All other rights reserved.
  27.  
  28. This example is provided "as-is" and is subject to change; no
  29. warranties are made.  All use is at your own risk. No liability or
  30. responsibility is assumed.
  31. */
  32.  
  33. #define INTUI_V36_NAMES_ONLY
  34.  
  35. #include <exec/types.h>
  36. #include <intuition/intuition.h>
  37. #include <intuition/intuitionbase.h>
  38.  
  39. #include <clib/exec_protos.h>
  40. #include <clib/dos_protos.h>
  41. #include <clib/intuition_protos.h>
  42.  
  43. #include <stdio.h>
  44.  
  45. #ifdef LATTICE
  46. int CXBRK(void)    { return(0); }  /* Disable Lattice CTRL/C handling */
  47. int chkabort(void) { return(0); }  /* really */
  48. #endif
  49.  
  50. struct IntuitionBase *IntuitionBase = NULL;
  51.  
  52. #define MYIMAGE_LEFT    (0)
  53. #define MYIMAGE_TOP     (0)
  54. #define MYIMAGE_WIDTH   (24)
  55. #define MYIMAGE_HEIGHT  (10)
  56. #define MYIMAGE_DEPTH   (1)
  57.  
  58. /* This is the image data.  It is a one bit-plane open rectangle which is 24
  59. ** pixels wide and 10 high.  Make sure that it is in CHIP memory, or allocate
  60. ** a block of chip memory with a call like this: AllocMem(data_size,MEMF_CHIP),
  61. ** and then copy the data to that block.  See the Exec chapter on Memory
  62. ** Allocation for more information on AllocMem().
  63. */
  64. UWORD __chip myImageData[] =
  65.     {
  66.     0xFFFF, 0xFF00,
  67.     0xC000, 0x0300,
  68.     0xC000, 0x0300,
  69.     0xC000, 0x0300,
  70.     0xC000, 0x0300,
  71.     0xC000, 0x0300,
  72.     0xC000, 0x0300,
  73.     0xC000, 0x0300,
  74.     0xC000, 0x0300,
  75.     0xFFFF, 0xFF00,
  76.     };
  77.  
  78. /*
  79. ** main routine. Open required library and window and draw the images.
  80. ** This routine opens a very simple window with no IDCMP.  See the
  81. ** chapters on "Windows" and "Input and Output Methods" for more info.
  82. ** Free all resources when done.
  83. */
  84. VOID main(int argc, char *argv[])
  85. {
  86. struct Window *win;
  87. struct Image myImage;
  88.  
  89. IntuitionBase = (struct IntuitionBase *)OpenLibrary("intuition.library",37);
  90. if (IntuitionBase != NULL)
  91.     {
  92.     if (NULL != (win = OpenWindowTags(NULL,
  93.                         WA_Width,       200,
  94.                         WA_Height,      100,
  95.                         WA_RMBTrap,     TRUE,
  96.                         TAG_END)))
  97.         {
  98.         myImage.LeftEdge    = MYIMAGE_LEFT;
  99.         myImage.TopEdge     = MYIMAGE_TOP;
  100.         myImage.Width       = MYIMAGE_WIDTH;
  101.         myImage.Height      = MYIMAGE_HEIGHT;
  102.         myImage.Depth       = MYIMAGE_DEPTH;
  103.         myImage.ImageData   = myImageData;
  104.         myImage.PlanePick   = 0x1;              /* use first bit-plane     */
  105.         myImage.PlaneOnOff  = 0x0;              /* clear all unused planes */
  106.         myImage.NextImage   = NULL;
  107.  
  108.         /* Draw the 1 bit-plane image into the first bit-plane (color 1) */
  109.         DrawImage(win->RPort,&myImage,10,10);
  110.  
  111.         /* Draw the same image at a new location */
  112.         DrawImage(win->RPort,&myImage,100,10);
  113.  
  114.         /* Wait a bit, then quit.
  115.         ** In a real application, this would be an event loop, like the
  116.         ** one described in the Intuition Input and Output Methods chapter.
  117.         */
  118.         Delay(200);
  119.  
  120.         CloseWindow(win);
  121.         }
  122.     CloseLibrary((struct Library *)IntuitionBase);
  123.     }
  124. }
  125.